home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / fgets.c,v < prev    next >
Text File  |  1992-01-21  |  3KB  |  133 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     92.01.21.16.29.07;  author shirriff;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.10.16.23.44;  author ouster;  state Exp;
  16. branches 1.1.1.1;
  17. next     ;
  18.  
  19. 1.1.1.1
  20. date     91.12.02.19.56.13;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Made a change to behavior if nothing read, to make it compatible
  32. with Unix.
  33. @
  34. text
  35. @/* 
  36.  * fgets.c --
  37.  *
  38.  *    Source code for the "fgets" library procedure.
  39.  *
  40.  * Copyright 1988 Regents of the University of California
  41.  * Permission to use, copy, modify, and distribute this
  42.  * software and its documentation for any purpose and without
  43.  * fee is hereby granted, provided that the above copyright
  44.  * notice appear in all copies.  The University of California
  45.  * makes no representations about the suitability of this
  46.  * software for any purpose.  It is provided "as is" without
  47.  * express or implied warranty.
  48.  */
  49.  
  50. #ifndef lint
  51. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fgets.c,v 1.1 88/06/10 16:23:44 ouster Exp Locker: shirriff $ SPRITE (Berkeley)";
  52. #endif not lint
  53.  
  54. #include "stdio.h"
  55.  
  56. /*
  57.  *----------------------------------------------------------------------
  58.  *
  59.  * fgets --
  60.  *
  61.  *    Reads a line from a stream.
  62.  *
  63.  * Results:
  64.  *    Characters are read from stream and placed at buf until a
  65.  *    newline is encountered or maxChars-1 characters have been
  66.  *    processed or an end of file or error is encountered.  The
  67.  *    string at buf is left null-terminated.  The return value is
  68.  *    a pointer to buf if all went well, or NULL if an end of file
  69.  *    or error was encountered before reading any characters.
  70.  *
  71.  * Side effects:
  72.  *    Characters are removed from stream.
  73.  *
  74.  *----------------------------------------------------------------------
  75.  */
  76.  
  77. char *
  78. fgets(bufferPtr, maxChars, stream)
  79.     char *bufferPtr;        /* Where to place characters.  Must have
  80.                  * at least maxChars bytes of storage. */
  81.     register int maxChars;    /* Maximum number of characters to read
  82.                  * from stream. */
  83.     register FILE *stream;    /* Stream from which to read characters. */
  84. {
  85.     register char *destPtr = bufferPtr;
  86.     register int c;
  87.  
  88.     for (maxChars--; maxChars > 0; maxChars--) {
  89.     c = getc(stream);
  90.     if (c < 0) {
  91.     /* Other systems don't clear destPtr, and it breaks some programs,
  92.      * so I'm taking this out.
  93.      */
  94. #if 0
  95.         *destPtr = 0;
  96. #endif
  97.         return NULL;
  98.     }
  99.     *destPtr = c;
  100.     destPtr++;
  101.     if (c == '\n') {
  102.         break;
  103.     }
  104.     }
  105.     *destPtr = 0;
  106.     return bufferPtr;
  107. }
  108. @
  109.  
  110.  
  111. 1.1
  112. log
  113. @Initial revision
  114. @
  115. text
  116. @d17 1
  117. a17 1
  118. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  119. d57 4
  120. d62 1
  121. @
  122.  
  123.  
  124. 1.1.1.1
  125. log
  126. @Initial branch for Sprite server.
  127. @
  128. text
  129. @d17 1
  130. a17 1
  131. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fgets.c,v 1.1 88/06/10 16:23:44 ouster Exp $ SPRITE (Berkeley)";
  132. @
  133.